home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Sample.bin / EmployeeDataManager.txt < prev    next >
Text File  |  1996-01-22  |  1KB  |  27 lines

  1. Title: Employee Data Manager
  2. Type: Application
  3. Source: EmployeeDataManager.java
  4. Description:
  5.     Reads and parses a text file containing employee information; parses,
  6.     and sorts the information based on name, age or SS# (selected by user).
  7.     The information is then displayed in a scrollable text window.
  8.  
  9. Detailed Description:
  10.  
  11.     Allows the user to interactively scroll through a list of employees; sort the list 
  12.     on either name, age, or SS#; enter information for a new employee; and store
  13.     that information in a single file.
  14.  
  15.     The concepts of data object encapsulation are illustrated, providing construction,
  16.     validation, and ordering of each data field within the object class that constructs
  17.     that field.
  18.  
  19.     File operations are implemented in a separate class. Each record is written as
  20.     a fixed-width byte array, allowing the easy addition of a modification method
  21.     by the programmer.
  22.  
  23.     Currently, due to the limitations of browsers with regard to file access, this
  24.     program can only be run as an application. However, it is designed to be run
  25.     as an applet as well, in expectation of the removal of the aforementioned
  26.     browser file access restrictions.
  27.